home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000181_fdc@columbia.edu_Thu Dec 12 12:13:16 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  40 lines

  1. Article: 13962 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Mapping COM port to TCP/IP device address
  6. Date: 12 Dec 2002 12:13:12 -0500
  7. Organization: Columbia University
  8. Lines: 23
  9. Message-ID: <atag38$ad8$1@watsol.cc.columbia.edu>
  10. References: <70b5637.0212120656.61ee39a8@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1039713193 29620 128.59.39.139 (12 Dec 2002 17:13:13 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Dec 2002 17:13:13 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13962
  16.  
  17. In article <70b5637.0212120656.61ee39a8@posting.google.com>,
  18. Phil <Phil.McDermott@e-ci.com> wrote:
  19. : We are currently using Kermit which is embeddeded into an industrial
  20. : control.  The control has a RS232 port which can then be wired to a PC
  21. : COM port and running Kermit 95 to transfer files.
  22. : What I would like to do is add a Serial to Ethernet converter device
  23. : (NPort www.moxa.com for example) to the control to eliminate the need
  24. : to run RS232 to the control.  The idea is the control could be
  25. : accessed from a PC anywhere on the network.
  26. : What I'm not sure about is can Kermit 95 access an IP address directly
  27. : just as it would a COM port.  Or do I need to get a driver for Windows
  28. : that maps a virtual COM port to a TCP/IP address that Kermit 95 can
  29. : then access.  I understand how Kermit uses Telnet to do access a
  30. : TCP/IP address, but our control does not support Telnet.  It only
  31. : supports the Kermit protocol directly.
  32. No problem.  Kermit can also make connections to raw TCP/IP sockets:
  33.  
  34.   set host /network-type:tcp/ip ip-name-or-address [ port-number ] /raw-socket
  35.  
  36. - Frank
  37.